home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / X11 / Xmu / Lookup.h < prev    next >
C/C++ Source or Header  |  2006-04-12  |  3KB  |  129 lines

  1. /*
  2.  * $XFree86$
  3.  */
  4.  
  5. /************************************************************
  6.  
  7. Copyright 1999 by Thomas E. Dickey <dickey@clark.net>
  8.  
  9.                         All Rights Reserved
  10.  
  11. Permission is hereby granted, free of charge, to any person obtaining a
  12. copy of this software and associated documentation files (the
  13. "Software"), to deal in the Software without restriction, including
  14. without limitation the rights to use, copy, modify, merge, publish,
  15. distribute, sublicense, and/or sell copies of the Software, and to
  16. permit persons to whom the Software is furnished to do so, subject to
  17. the following conditions:
  18.  
  19. The above copyright notice and this permission notice shall be included
  20. in all copies or substantial portions of the Software.
  21.  
  22. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  23. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  25. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
  26. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  27. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  28. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  29.  
  30. Except as contained in this notice, the name(s) of the above copyright
  31. holders shall not be used in advertising or otherwise to promote the
  32. sale, use or other dealings in this Software without prior written
  33. authorization.
  34.  
  35. ********************************************************/
  36.  
  37. #ifndef included_xmu_lookup_h
  38. #define included_xmu_lookup_h 1
  39.  
  40. #include <X11/Xlib.h>
  41. #include <X11/Xutil.h>
  42.  
  43. extern int XmuLookupString(
  44.         XKeyEvent *event,
  45.         unsigned char *buffer,
  46.         int nbytes,
  47.         KeySym *keysym,
  48.         XComposeStatus *status,
  49.         unsigned long keysymSet);
  50.  
  51. extern int XmuLookupLatin1(
  52.         XKeyEvent *event,
  53.         unsigned char *buffer,
  54.         int nbytes,
  55.         KeySym *keysym,
  56.         XComposeStatus *status);
  57.  
  58. extern int XmuLookupLatin2(
  59.         XKeyEvent *event,
  60.         unsigned char *buffer,
  61.         int nbytes,
  62.         KeySym *keysym,
  63.         XComposeStatus *status);
  64.  
  65. extern int XmuLookupLatin3(
  66.         XKeyEvent *event,
  67.         unsigned char *buffer,
  68.         int nbytes,
  69.         KeySym *keysym,
  70.         XComposeStatus *status);
  71.  
  72. extern int XmuLookupLatin4(
  73.         XKeyEvent *event,
  74.         unsigned char *buffer,
  75.         int nbytes,
  76.         KeySym *keysym,
  77.         XComposeStatus *status);
  78.  
  79. extern int XmuLookupKana(
  80.         XKeyEvent *event,
  81.         unsigned char *buffer,
  82.         int nbytes,
  83.         KeySym *keysym,
  84.         XComposeStatus *status);
  85.  
  86. extern int XmuLookupJISX0201(
  87.         XKeyEvent *event,
  88.         unsigned char *buffer,
  89.         int nbytes,
  90.         KeySym *keysym,
  91.         XComposeStatus *status);
  92.  
  93. extern int XmuLookupArabic(
  94.         XKeyEvent *event,
  95.         unsigned char *buffer,
  96.         int nbytes,
  97.         KeySym *keysym,
  98.         XComposeStatus *status);
  99.  
  100. extern int XmuLookupCyrillic(
  101.         XKeyEvent *event,
  102.         unsigned char *buffer,
  103.         int nbytes,
  104.         KeySym *keysym,
  105.         XComposeStatus *status);
  106.  
  107. extern int XmuLookupGreek(
  108.         XKeyEvent *event,
  109.         unsigned char *buffer,
  110.         int nbytes,
  111.         KeySym *keysym,
  112.         XComposeStatus *status);
  113.  
  114. extern int XmuLookupAPL(
  115.         XKeyEvent *event,
  116.         unsigned char *buffer,
  117.         int nbytes,
  118.         KeySym *keysym,
  119.         XComposeStatus *status);
  120.  
  121. extern int XmuLookupHebrew(
  122.         XKeyEvent *event,
  123.         unsigned char *buffer,
  124.         int nbytes,
  125.         KeySym *keysym,
  126.         XComposeStatus *status);
  127.  
  128. #endif /* included_xmu_lookup_h */
  129.